home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / BIX.ASP < prev    next >
Text File  |  1988-01-01  |  2KB  |  41 lines

  1. ;*************************************************************************
  2. ;* BIX.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                        *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto BIX via local Tymnet.    *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. ASSIGN S0 "874-2771"     ; enter your local TYMNET number here
  9. ASSIGN S1 "uuuuuuuuu"    ; enter your USERID here
  10. ASSIGN S2 "ppppp"        ; enter your PASSWORD here
  11.  
  12. EMULATE ANSI               ; Select terminal emulation
  13.  
  14. WHEN ".More." "^M"
  15.  
  16. IF NOT LINKED
  17.    CLEAR
  18.    TIME S8 0
  19.    DATE S9
  20.    FATSAY 0 0 31 "Dialing BIX via Tymnet at %s on %s" S8 S9
  21.    SET BAUD 1200        ; configure line settings
  22.    SET PARITY EVEN
  23.    SET DATABITS 7
  24.    SET DUPLEX FULL
  25.    MDIAL S0             ; Dial TYMNET
  26. ENDIF
  27.  
  28. PAUSE 5                 ; Wait for network to wake up
  29. TRANSMIT "a^M"          ; Send terminal ID
  30. WAITFOR "user name:"    ; Wait for prompt
  31. TRANSMIT "bix^M"        ; Request BIX
  32. WAITFOR "Name?"         ; Wait for prompt
  33. TRANSMIT S1             ; Send ID followed by
  34. TRANSMIT "^M"           ; Carriage return
  35. WAITFOR "Password:"     ; Wait for prompt
  36. TRANSMIT S2             ; Send password followed
  37. TRANSMIT "^M"           ; by carriage return
  38. WAITFOR "You have"      ; Wait for prompt
  39. WAITFOR ":"             ; Wait for command prompt
  40. ALARM 2                 ; Alert user to logon
  41.